home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / dev / c / ctags.lha / ctags-3.0.3 / acconfig.h next >
C/C++ Source or Header  |  1999-02-17  |  3KB  |  90 lines

  1. /* $Id: acconfig.h,v 7.2 1998/12/12 05:59:48 darren Exp $   */
  2.  
  3. /*  Package name.
  4.  */
  5. #undef PACKAGE
  6.  
  7. /*  Package version.
  8.  */
  9. #undef VERSION
  10.  
  11. /*  Define to the appropriate type if <time.h> does not define this.
  12.  */
  13. #undef clock_t
  14.  
  15. /*  Define to long if <stdio.h> does not define this.
  16.  */
  17. #undef fpos_t
  18.  
  19. /*  Define to the appropriate size for tmpnam() if <stdio.h> does not define
  20.  *  this.
  21.  */
  22. #undef L_tmpnam
  23.  
  24. /*  Define remove to unlink if you have unlink(), but not remove().
  25.  */
  26. #undef remove
  27.  
  28. /*  Define this value used by fseek() appropriately if <stdio.h>
  29.  *  (or <unistd.h> on SunOS 4.1.x) does not define them.
  30.  */
  31. #undef SEEK_SET
  32.  
  33. /*  Define as the maximum integer on your system if not defined <limits.h>.
  34.  */
  35. #undef INT_MAX
  36.  
  37. /*  Define this label if you want macro tags (defined lables) to use patterns
  38.  *  in the EX command by default (original ctags behavior is to use line
  39.  *  numbers).
  40.  */
  41. #undef MACROS_USE_PATTERNS
  42.  
  43. /*  Define this as desired.
  44.  *    1:  Original ctags format
  45.  *    2:  Extended ctags format with extension flags in EX-style comment.
  46.  */
  47. #define DEFAULT_FILE_FORMAT    2
  48.  
  49. /*  Define this label to use the system sort utility (which is probably more
  50.  *  efficient) over the interal sorting algorithm.
  51.  */
  52. #ifndef INTERNAL_SORT
  53. # undef EXTERNAL_SORT
  54. #endif
  55.  
  56. /*  If you are using the system sort utility (i.e. external sort), define
  57.  *  this label to be the name of your awk program, which is used to report
  58.  *  duplicate tags when the -W option is specified.
  59.  */
  60. #define AWK "awk"
  61.  
  62. /*  This corrects the problem of missing prototypes for certain functions
  63.  *  in some GNU installations (e.g. SunOS 4.1.x).
  64.  */
  65. #undef __USE_FIXED_PROTOTYPES__
  66.  
  67. /*  Define this is you have a prototype for putenv() in <stdlib.h>, but
  68.  *  doesn't declare its argument as "const char *".
  69.  */
  70. #undef NON_CONST_PUTENV_PROTOTYPE
  71.  
  72. /*  If you receive error or warning messages indicating that you are missing
  73.  *  a prototype for, or a type mismatch using, one of the following functions,
  74.  *  define the appropriate label and remake.
  75.  */
  76. #undef NEED_PROTO_REMOVE
  77. #undef NEED_PROTO_UNLINK
  78. #undef NEED_PROTO_MALLOC
  79. #undef NEED_PROTO_GETENV
  80. #undef NEED_PROTO_STRSTR
  81. #undef NEED_PROTO_FGETPOS
  82. #undef NEED_PROTO_STAT
  83. #undef NEED_PROTO_TRUNCATE
  84. #undef NEED_PROTO_FTRUNCATE
  85.  
  86. /*----------------------------------------------------------------------------
  87. -    Lines below this are automatically generated by autoheader
  88. ----------------------------------------------------------------------------*/
  89. /* @TOP@ */
  90.